Replace "/bin/sh -e" with "set -e" in common and bin-common postinsts.
authorRob Browning <rlb@defaultvalue.org>
Wed, 11 Aug 2010 04:47:47 +0000 (23:47 -0500)
committerRob Browning <rlb@defaultvalue.org>
Wed, 11 Aug 2010 04:47:47 +0000 (23:47 -0500)
debian/changelog
debian/emacsVER-bin-common.postinst
debian/emacsVER-common.postinst

index 88cf37ceca86986bb5d4cb8d4888f87fa8794ba1..90763d0459be6867df6d203689338515ff63867f 100644 (file)
@@ -12,7 +12,11 @@ emacs23 (23.2+1-3) unstable; urgency=low
     Stéphane Glondu <glondu@debian.org> for the 23.2+1-2.1
     NMU.
 
- -- Rob Browning <rlb@defaultvalue.org>  Tue, 10 Aug 2010 23:40:54 -0500
+  * Use "set -e" rather than "/bin/sh -e" in emacsVER-common.postinst
+    and emacsVER-bin-common.postinst.  Thanks to Stéphane Glondu
+    <glondu@debian.org> for the 23.2+1-2.1 NMU.
+
+ -- Rob Browning <rlb@defaultvalue.org>  Tue, 10 Aug 2010 23:44:41 -0500
 
 emacs23 (23.2+1-2) unstable; urgency=low
 
index 08dc2b2b4605c3a1a15a1e8b68fb3fbae65ca27f..593d277c9208d3ed5c45701750dba8010690f6bf 100644 (file)
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 FLAVOR=@DEB_FLAVOR@
 MAJOR=@MAJOR_VERSION@
index 9e6f0002e860cf3ef209be6561697520c6ba959b..39dbe15584e7a7ee8d436723127964d10190376e 100644 (file)
@@ -1,4 +1,6 @@
-#!/bin/sh -e
+#!/bin/sh
+
+set -e
 
 MAJOR=@MAJOR_VERSION@
 MINOR=@MINOR_VERSION@